From b81dac762537c604044065272d9fc159e93eb973 Mon Sep 17 00:00:00 2001 From: Konstantin Demin Date: Fri, 4 Jul 2025 10:51:40 +0300 Subject: [PATCH] libdht: adjust with glibc and libcrypt-compat glibc 2.39 has removed libcrypt completely. solution: link against libxcrypt built with glibc compatibility. Signed-off-by: Konstantin Demin --- libs/libdht/Makefile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/libs/libdht/Makefile b/libs/libdht/Makefile index 46217cb9c5..a824c63dc8 100644 --- a/libs/libdht/Makefile +++ b/libs/libdht/Makefile @@ -1,7 +1,7 @@ include $(TOPDIR)/rules.mk PKG_NAME:=libdht -PKG_RELEASE:=1 +PKG_RELEASE:=2 PKG_SOURCE_PROTO:=git PKG_SOURCE_URL:=https://github.com/jech/dht @@ -20,6 +20,7 @@ define Package/libdht SECTION:=libs CATEGORY:=Libraries TITLE:=Kademlia Distributed Hash Table (DHT) library + DEPENDS:= +USE_GLIBC:libcrypt-compat endef define Build/InstallDev -- 2.30.2